home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
misc
/
modans20.lha
/
MailBox.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-03-12
|
514b
|
23 lines
/* MailBox-program for ModAns v 2.0 */
options results
address MODANS.0
do forever
'waitconnect'
if rc=5 then iterate
'sendtextfile Login.txt'
'send Would you like to leave a message? (y/N)'
'getstring 5'
if upper(left(result,1))='Y' then do
tid=time('N')
parse var tid hour ':' min ':'
'send' '0a0a0d'x
'edittext' date('s') || '_' || hour || min || '.txt'
'send' '0a0a0d'x || 'Your text has been archived among the others on my hard disk.' '0a0d'x
end
'sendtextfile Logout.txt'
'hangup'
end